home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / ttyname.c < prev    next >
C/C++ Source or Header  |  1989-07-21  |  2KB  |  72 lines

  1. /* 
  2.  * ttyname.c --
  3.  *
  4.  *    Source code for the ttyname library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: ttyname.c,v 1.2 88/08/25 17:21:00 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdlib.h>
  21. #include <sys/types.h>
  22. #include <sys/stat.h>
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * ttyname --
  28.  *
  29.  *    This is a Sprite replacement for the UNIX ttyname library
  30.  *    procedure, which supposedly returns the name of the tty
  31.  *    associated with a given file descriptor.  Sprite doesn't
  32.  *    have a /dev with all ttys in it, so it's pretty hard to
  33.  *    emulate the right behavior.
  34.  *
  35.  * Results:
  36.  *    The return value is the name of the file corresponding
  37.  *    to filedes, if we could figure which one it was, or 0
  38.  *    otherwise.
  39.  *
  40.  * Side effects:
  41.  *    None.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46.     /* ARGSUSED */
  47. char *
  48. ttyname(filedes)
  49.     int filedes;        /* File for which to find tty name. */
  50. {
  51.     struct stat buf1, buf2;
  52.     char *tty;
  53.  
  54.     /*
  55.      * See if the file pointed to by the "TTY" environment variable
  56.      * happens to be the same as filedes.  If not, then return NULL.
  57.      */
  58.  
  59.     tty = getenv("TTY");
  60.     if ((tty == (char *) 0) || (stat(tty, &buf1) != 0)) {
  61.     return (char *) 0;
  62.     }
  63.     if (fstat(filedes, &buf2) != 0) {
  64.     return (char *) 0;
  65.     }
  66.     if ((buf1.st_dev == buf2.st_dev) && (buf1.st_ino == buf2.st_ino)
  67.         && (buf1.st_serverID == buf2.st_serverID)) {
  68.     return tty;
  69.     }
  70.     return (char *) 0;
  71. }
  72.